home *** CD-ROM | disk | FTP | other *** search
/ Network PC / Network PC.iso / amiga utilities / graphics / display / mpega / src / bitstream.i < prev    next >
Encoding:
Text File  |  1997-11-20  |  1.1 KB  |  47 lines

  1. ;------------------------------------------------------------------------------
  2. ;
  3. ;   File    :    BitStream_asm.i
  4. ;
  5. ;   Author  :    Stéphane TAVENARD
  6. ;
  7. ;   $VER:   BitStream_asm.i  1.0  (23/06/1995)
  8. ;
  9. ;   (C) Copyright 1995-1995 Stéphane TAVENARD
  10. ;    All Rights Reserved
  11. ;
  12. ;   #Rev|   Date   |              Comment
  13. ;   ----|----------|--------------------------------------------------------
  14. ;   0    |12/04/1995| Initial revision                      ST
  15. ;   1    |03/06/1995| First release (no more C code)                       ST
  16. ;   2    |23/06/1995| Aminet release                      ST
  17. ;
  18. ;   ------------------------------------------------------------------------
  19. ;
  20. ;   BitStream files handling defintion
  21. ;
  22. ;------------------------------------------------------------------------------
  23.  
  24.             IFND  BITSTREAM_I
  25. BITSTREAM_I        set   1
  26.  
  27. ;  Bitstream structure
  28.  
  29.             rsreset
  30. BSTR_file_ptr        rs.l  1
  31. BSTR_mode        rs.l  1
  32. BSTR_buffer_size    rs.l  1
  33. BSTR_buffer        rs.l  1
  34. BSTR_current_bit_index    rs.l  1
  35. BSTR_remaining_bits    rs.l  1
  36. BSTR_bitstream_size    rs.l  1
  37. BSTR_end_of_stream    rs.l  1
  38. BSTR_SIZEOF        rs.l  0
  39.  
  40.  
  41. BSTR_MODE_READ        equ   0
  42. BSTR_MODE_WRITE     equ   1
  43.  
  44. BSTR_MAX_BITS        equ   32    ; # max of bits to read
  45.  
  46.             ENDC        ; BITSTREAM_I
  47.